home *** CD-ROM | disk | FTP | other *** search
- Path: news.compuserve.com!newsmaster
- From: 76623,2065@compuserve.com (Bobby Martin)
- Newsgroups: comp.lang.c++
- Subject: Re: Entry level help
- Date: 1 Apr 1996 14:32:46 GMT
- Organization: CompuServe Incorporated
- Message-ID: <4jopee$lpe@dub-news-svc-1.compuserve.com>
- References: <4jnqk5$9l6@geraldo.cc.utexas.edu>
- Reply-To: 76623,2065@compuserve.com (Bobby Martin)
- NNTP-Posting-Host: ad06-020.compuserve.com
- X-Newsreader: IBM NewsReader/2 v1.03
-
- There is a typo in the name of the include file you're using. Use
- #include <iostream.h>
- instead of
- #include <isostream.h>
-
- Hope that helps,
-
- Bobby Martin
-
- In <4jnqk5$9l6@geraldo.cc.utexas.edu>, y.s.l@mail.utexas.edu (Shenling Yang) writes:
- >I am a starter of C++, using Bordland C++ V3.1 for windows to start to
- >learn
- >the language under the win95 environment.
- >
- >The problem arised from: I started a new file, and follow the
- >book instruction ("The waite group's C++ primer plus" your guys
- >might familiar this book) input simple program like this:
- >
- >#include <isostream.h>
- >int main(void)
- >{
- >cout << "come up and c++ me some time.";
- >cout << "\n";
- >return 0;
- >}
- >
- >Saved the file and run compiler, it came out the error msg
- >that "unable to open include file isostream.h, undefined the
- >symbol "cout", undefined symbol "return" ....
- >
- >Is anyone can help me out of this, thanks in advance, I am a
- >kind of newer, so please send me as detail info as you can.
- >
- >Mail address: y.s.l@mail.utexas.edu
- >
-
-